*{
    /* border: solid; */
}



.tool-strip{

    display: flex;
    justify-content: space-between;
    gap: 4vw;
    
    width: 100%;

    margin: 5px;
    /* background-color: khaki; */

    /* padding: 0.5vh 1vw; */
    /* padding: 0.5rem; */
}

.tool-group{

    display: flex;
    justify-content: space-around;
    gap: 2vw;

    /* width: 150px; */
    height: fit-content;
    /* background-color: indigo; */

    padding: 0.25em;
    padding: 0.25vw;
    /* text-align: right; */
    /* margin-right: 5%; */

}

#main-navigate-tool-group{
    display: none;
}

.tool-container{
    display: flex;
    flex-direction: column;
    
}

.tool-button{

    /* Perhaps remove this */
    display: flex;
    flex-direction: column;

    /* width: fit-content; */
    height: fit-content;
    /* border-radius: 50%; */
    padding: 0.5rem;    /** size of the border when mouse hovers */
    background-color: transparent;
    border: none;
    
    /* opacity: 0.75; */
    cursor: pointer;
    transition: all ease 0.5s;
}

.tool-button:hover{
    opacity: 1;
    scale: 1.1;
    background-color: black;
    border-radius: 25%;
}


.tool-button-image{
    
    min-width: 48px;    /** best for controling the size of tool buttons */
    padding: 0.25rem;   /** along with padding */
    
    width: clamp(2.25rem, 5vw, 4rem);

    /* height: 70px; */
    /* border-radius: 50%; */
    
    background-color: white;
    border-radius: 25%;

    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 1000;
}

.tool-button-image:active{
    background-color: black;
}

.tool-label{
    /* display: none; */

    height: fit-content;

    margin-top: 4px;

    font-family: "Cheese";
    font-size: 1rem;
    text-align: center;

    color: #333;
    opacity: 0;
    
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    /* animation: none; */
    
    /* pointer-events: none; */
    /* white-space: nowrap; */
}

/* Bounce keyframes */
@keyframes bounceUp {
    0%   { transform: translateY(10px); opacity: 0; }
    50%  { transform: translateY(-4px); opacity: 1; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes heavenDrop {
    0%   { transform: translateY(-12px); opacity: 0; text-shadow: none; }
    100% { transform: translateY(0); opacity: 1; text-shadow: 0 0 6px #ffffcc; }
}

/* .button-container .tool-button:hover + .tool-label{
    animation: bounceUp 0.4s forwards;
} */

.tool-button:hover .tool-label{
    animation: bounceUp 0.4s forwards;
    /* background: yellow; */
}

.tool-button:hover ~ .tool-label{
    animation: heavenDrop 0.4s forwards;
    /* background: orange; */
}

/* .tool-container:hover .tool.label{
    background: orange;
    font-size: 64px;
    animation: bounceUp 0.4s forwards;
} */

/* .tool-container:hover .tool-label{
    background: red;
    animation: bounceUp 0.4s forwards;
} */




/* #region Share Toast */
#share-toast {

    position: fixed;
    top: 30px;
    right: 50%; 
    transform: translateX(50%);     /* centers the share-toast */
    
    font-size: 2rem;
    font-size: clamp(1rem, 3vw, 2rem); 
    text-align: center;
    line-height: 1.5em;

    width: 55%;
    min-width: 300px;
    max-width: 600px;

    padding: 0.5em 1em;
    border-radius: 8px;
    z-index: 9999;

    background-color: #333;
    color: white;
    
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
}

#share-toast.show {
    opacity: 1;
}
/* #endregion */

@media screen and (orientation: portrait) {

    /* #share-tool-group{ */
        /* height: 10vh; */
        /* border-radius: 100%; */
        
    /* } */
   
}
